home *** CD-ROM | disk | FTP | other *** search
/ Ahoy 1984 January to June / Ahoy_Magazine_84-Jan-Jun_1984_Double_L.d64 / rupert report #2 (.txt) < prev    next >
Commodore BASIC  |  2022-10-26  |  318b  |  14 lines

  1. 5 rem--ahoy!--june issue--rupert report--prog page59
  2. 10 rem - let, input, and read/data quiz
  3. 20 rem <the user types 15 oak in response to the followintg question>
  4. 30 input "what is your address";a$
  5. 40 read a,b,c
  6. 50 read d
  7. 60 restore : read e
  8. 70 read f$
  9. 80 let g=val(a$)
  10. 90 let h=val(f$ +f$)
  11. 100 print a,b,c,d,e,f,g,h
  12. 110 data 5,10
  13. 120 data 15,20,25
  14.